home *** CD-ROM | disk | FTP | other *** search
/ Mission 3 / Mission 3.zip / Mission 3.iso / texte / 7up_pd / fexist.c < prev    next >
C/C++ Source or Header  |  1998-10-29  |  386b  |  16 lines

  1. /*****************************************************************************
  2. *
  3. *                                              7UP
  4. *                                        Modul: FEXIST.C
  5. *                                     (c) by TheoSoft '94
  6. *
  7. *****************************************************************************/
  8. #include <stdio.h>
  9. #include <ext.h>
  10.  
  11. int fexist(char *pathname)
  12. {
  13.     struct ffblk fileRec;
  14.     return(!findfirst(pathname,&fileRec,0));
  15. }
  16.